

/*  Privacy policy  */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  }
  
  html {
	scroll-behavior: smooth;
  }
  
  
  
  /* Section Layout */
  .section {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
  }
  
  /* Grid Layout */
  .grid {
	display: grid;
	gap: 2rem;
  }
  
  /* Typography */
  h3 {
	color: #1a1a1a;
	scroll-margin-top: 100px;
	transition: color 0.3s ease;
  }
  
  .y-text-body-small {
	font-size: 1rem;
	line-height: 1.6;
	color: #312f3e;
	margin-bottom: 1rem;
  }
  
  /* Desktop Styles */
  @media (min-width: 1024px) {
	.desktop\:grid-cols-\[6fr_2fr\] {
	  grid-template-columns: 6fr 2fr;
	}
  
	.desktop\:pt-18 { padding-top: 4.5rem; }
	.desktop\:pb-6 { padding-bottom: 1.5rem; }
	.desktop\:text-\[24px\] { font-size: 24px; }
	.desktop\:leading-\[29px\] { line-height: 29px; }
  }
  

  
  /* Sidebar Navigation */
  aside {
	position: relative;
  }
  
  .sticky {
	position: sticky;
	top: 1rem;
  }
  
  /* Content Menu */
  ul.index {
	list-style: none;
	padding-left: 1rem;
	
  }

  
  
  li {
	position: relative;
	transition: all 0.3s ease;
    margin-bottom: 14px;
  }
  
  
  
  li:hover {
	color: #ff0000;
	transform: translateX(5px);
  }
  
 
  
  /* Animations */
  @keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
  }
  
  
  a {
	color: #312f3e;
	text-decoration: none;
	transition: all 0.3s ease;
  }
  
  
  a:hover {
	text-decoration: underline;
	color: #ef4910;
}

